home *** CD-ROM | disk | FTP | other *** search
- { Free allocated memory }
-
- FUNCTION Func49 (S : INTEGER) : BOOLEAN;
- BEGIN
- WITH Registers DO
- BEGIN
- AX:=((AX AND $00FF) OR ($49 SHL 8));
- ES:=S;
- MSDOS (Registers);
- IF (Flags AND $0001)=1 THEN
- Func49:=TRUE
- ELSE
- Func49:=FALSE;
- END;
- END;